Uncategorized APIClass ObjectArray ClassOn this pageArray Class Description: A class that creates Array objects. __call Type: Metamethod. Description: Metamethod to create a new, empty array object. Signature: metamethod __call: function(self: ArrayClass): Array Returns: Return TypeDescriptionArrayA new Array object. __call Type: Metamethod. Description: Metamethod to create a new array object initialized with a list of items. Signature: metamethod __call: function(self: ArrayClass, items: {Item}): Array Parameters: ParameterTypeDescriptionitems{Item}A table of items to initialize the array with. Returns: Return TypeDescriptionArrayA new Array object.